Notes on "My Learning Journey with PaddlePaddle" — Part 1: Installation of PaddlePaddle
2018-01-16
234 views
PaddlePaddle
我的PaddlePaddle学习之路
PaddlePaddle
Deep Learning
Install PaddlePaddle on Windows
Using PaddlePaddle with Docker
Compile PaddlePaddle
This note provides a detailed introduction to how to install and use PaddlePaddle (now referred to as Paddle) and demonstrates how to perform MNIST handwritten digit recognition through a specific example. Below is a summary of the note along with some supplementary information: ### Installing PaddlePaddle 1. **Python Environment Preparation**: - Ensure that Python and pip are already installed. 2. **Installation via pip**: ```bash pip inst ``` (Note: The original code snippet for installation appears to be truncated as "pip inst". Typically, the full command would be something like `pip install paddlepaddle` or a version-specific command for GPU/CPU.)
Read More